From 4c50d543b0cb8e31ffd893e7cf9e26f9dbec0e40 Mon Sep 17 00:00:00 2001 From: obzva Date: Mon, 12 Aug 2024 23:01:08 +0900 Subject: [PATCH] Refactor: new line at the end of the code --- contains-duplicate/flynn.cpp | 2 +- kth-smallest-element-in-a-bst/flynn.cpp | 2 +- number-of-1-bits/flynn.cpp | 2 +- palindromic-substrings/flynn.cpp | 2 +- top-k-frequent-elements/flynn.cpp | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) 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 +};