JAVA - Static Import 取得連結 Facebook X Pinterest 電子郵件 其他應用程式 5月 24, 2023 When use used static method m that you can call the method directly. import static org . junit . jupiter . api . Assertions . assertEquals ; assertEquals ( 1 , 1 ); 閱讀更多
Classics - 2 Pointer Solution 取得連結 Facebook X Pinterest 電子郵件 其他應用程式 5月 24, 2023 class Solution { public int getCommon ( int [ ] nums1 , int [ ] nums2 ) { int p1 = 0 ; int p2 = 0 ; while ( p1 < nums1 . length && p2 < nums2 . length ) { if ( nums1 [ p1 ] == nums2 [ p2 ] ) { return nums1 [ p1 ] ; } if ( nums1 [ p1 ] < nums2 [ p2 ] ) { p1 ++ ; } else { p2 ++ ; } } return - 1 ; } } 閱讀更多