diff --git a/contains-duplicate/flynn.cpp b/contains-duplicate/flynn.cpp index c45432e12..11404be57 100644 --- a/contains-duplicate/flynn.cpp +++ b/contains-duplicate/flynn.cpp @@ -21,4 +21,4 @@ class Solution { } return false; } -}; \ No newline at end of file +}; diff --git a/kth-smallest-element-in-a-bst/flynn.cpp b/kth-smallest-element-in-a-bst/flynn.cpp index 1ab20fdfc..10b4e7a3b 100644 --- a/kth-smallest-element-in-a-bst/flynn.cpp +++ b/kth-smallest-element-in-a-bst/flynn.cpp @@ -38,4 +38,4 @@ class Solution { return nums[k - 1]; } -}; \ No newline at end of file +}; diff --git a/number-of-1-bits/flynn.cpp b/number-of-1-bits/flynn.cpp index 4ef70dd87..ac095d247 100644 --- a/number-of-1-bits/flynn.cpp +++ b/number-of-1-bits/flynn.cpp @@ -18,4 +18,4 @@ class Solution { return res; } -}; \ No newline at end of file +}; diff --git a/palindromic-substrings/flynn.cpp b/palindromic-substrings/flynn.cpp index bbd428818..99ccfe48f 100644 --- a/palindromic-substrings/flynn.cpp +++ b/palindromic-substrings/flynn.cpp @@ -31,4 +31,4 @@ class Solution { return res; } -}; \ No newline at end of file +}; diff --git a/top-k-frequent-elements/flynn.cpp b/top-k-frequent-elements/flynn.cpp index a5a54260c..26cc6b7c6 100644 --- a/top-k-frequent-elements/flynn.cpp +++ b/top-k-frequent-elements/flynn.cpp @@ -43,4 +43,4 @@ class Solution { return res; } -}; \ No newline at end of file +};