Skip to content

issues Search Results · repo:fishercoder1534/Leetcode language:Java

Filter by

21 results
 (102 ms)

21 results

infishercoder1534/Leetcode (press backspace or delete to remove)

YouTube real subscription
  • JJayantch
  • Opened 
    on Jul 26, 2024
  • #184

class Solution { public int minCostToMoveChips(int[] position) { int even = 0; int odd = 0; for(int i : position) { if(i % 2 == 0) even++; else odd++; } return Math.min(even, odd); } } This solution is ...
  • Aiyaret-Sandhu
  • 1
  • Opened 
    on Jan 23, 2024
  • #182

Current implementation will return only one element in all cases. Fix is to skip duplicates and stay only unique elements. Fix attached to this issue. img width= 982 alt= Screenshot 2023-12-12 at 12 14 ...
  • kachurk
  • 1
  • Opened 
    on Dec 12, 2023
  • #180

  • KumarShivam1908
  • Opened 
    on Apr 26, 2023
  • #177

It is the solution for #518 which is the same coin change question but requires a different answer for minimum required vs number of combinations. Comment also links to #518.
  • jimsmithm3
  • 2
  • Opened 
    on Aug 21, 2022
  • #171

We are not allowed to use .toLowerCase() 😀 (even i did the same)..... You can close this issue without any changes 😉
  • sushant-sinha
  • Opened 
    on Jan 8, 2021
  • #144

1619 s solution is same as 1620...i guess there is some thing wrong with the links...
  • sushant-sinha
  • 1
  • Opened 
    on Jan 2, 2021
  • #141

Some values for the Tag / Difficulty are switched. Last 6 problems
  • andrefpoliveira
  • Opened 
    on Oct 26, 2020
  • #121

I believe that you have switched places the Tag and the Difficulty header
  • andrefpoliveira
  • 1
  • Opened 
    on Oct 26, 2020
  • #120

I d like to add codes in Java for some left out problems.
  • contributor13
  • 1
  • Opened 
    on Oct 26, 2020
  • #119
Issue origami icon

Learn how you can use GitHub Issues to plan and track your work.

Save views for sprints, backlogs, teams, or releases. Rank, sort, and filter issues to suit the occasion. The possibilities are endless.Learn more about GitHub Issues
ProTip! 
Press the
/
key to activate the search input again and adjust your query.
Issue origami icon

Learn how you can use GitHub Issues to plan and track your work.

Save views for sprints, backlogs, teams, or releases. Rank, sort, and filter issues to suit the occasion. The possibilities are endless.Learn more about GitHub Issues
ProTip! 
Press the
/
key to activate the search input again and adjust your query.
Issue search results · GitHub