Pinned Repositories
3Sum-Closest-LEETCODE-MEDIUM
O(N^2) Solution to 3Sum Closest
3Sum-LEETCODE-MEDIUM
Returns an array of all unique (none can have the same index) tuples in an array that have a sum of 0. O(N^2) Java Solution.
ARW-to-JPG-converter
Quick and easy bash script to convert all ARW files in a folder to JPGs
BarcodeScannerTest
For CS441 Project
Basic-Calculator-Leetcode-Hard
Java DFS solution to Basic Calculator. Beats 96% of Java Submissions
Best-Time-To-Buy-And-Sell-Stock-Leetcode-EASY
Best-Time-to-Buy-and-Sell-Stock-with-Cooldown-LEETCODE-MEDIUM
DFS approach to buying and selling stocks for maximum profit
Capacity-To-Ship-Packages-Within-D-Days-Leetcode-Medium
Java Solution to Capacity To Ship Packages Within D Days Leetcode Problem
Design-Add-and-Search-Words-Data-Structure-LEETCODE-MEDIUM
2 Java solutions. one using a hashmap, the other using a HashSet for Design Add and Search Words Data Structure.
realesrgan-video-script
Modified realesrgan-ncnn-vulkan upscaler to be faster for video rendering on macos
JustinButler700's Repositories
JustinButler700/realesrgan-video-script
Modified realesrgan-ncnn-vulkan upscaler to be faster for video rendering on macos
JustinButler700/ARW-to-JPG-converter
Quick and easy bash script to convert all ARW files in a folder to JPGs
JustinButler700/BarcodeScannerTest
For CS441 Project
JustinButler700/Basic-Calculator-Leetcode-Hard
Java DFS solution to Basic Calculator. Beats 96% of Java Submissions
JustinButler700/Capacity-To-Ship-Packages-Within-D-Days-Leetcode-Medium
Java Solution to Capacity To Ship Packages Within D Days Leetcode Problem
JustinButler700/CPP-Method-Decl-Parser
Python regex matcher to find when a line contains C++ Method Declaration.
JustinButler700/Evaluate-Reverse-Polish-Notation-Leetcode-Medium
O(n) easy to understand Java solution to Evaluate Reverse Polish Notation on a string array.
JustinButler700/Find-the-Town-Judge-Leetcode-Easy
Java O(n) solution to leetcode problem Find the Town Judge. Beats 99% of Java Submissions.
JustinButler700/Flood-Fill-Leetcode-Easy
Typescript recursive flood fill algorithm.
JustinButler700/Generate-Parentheses-Leetcode-Medium
Recursive, simple java solution to Generate Parentheses. Beats 94% of Java Submissions.
JustinButler700/Integer-to-Roman-Leetcode-Medium
Fast algorithm to convert an Integer to roman numerals in Typescript.
JustinButler700/JustinButler700
Config files for my GitHub profile.
JustinButler700/Maximum-Bags-With-Full-Capacity-of-Rocks-Leetcode-Medium
Solution to Maximum Bags With Full Capacity of Rocks.
JustinButler700/Maximum-Subarray-Leetcode-Medium
Java Solution to Maximum Subarray, beats 100% O(n)
JustinButler700/Merge-Intervals-Leetcode-Medium
O(n) solution to Merge Intervals Java. Beats 96% of Java Submissions.
JustinButler700/Minimum-Rounds-to-Complete-All-Tasks-Leetcode-Medium
O(n) Solution.
JustinButler700/Minimum-Time-Difference-Leetcode-Medium
Java & Typescript O(n) Solution to leetcode problem "Minimum Time Difference"
JustinButler700/Number-of-Islands-Leetcode-Medium
Java DFS solution to Number of Islands, beats over 90%.
JustinButler700/Pascals-Triangle-Leetcode-Easy
recursive java solution to pascal's triangle. O(n^2)
JustinButler700/Permutations-II-Leetcode-Medium
Java Backtracking solution to Permutations II
JustinButler700/Plus-One-Leetcode-Easy
0ms, Beats 100% solution to Plus One Leetcode Problem.
JustinButler700/Resume
My Resume (Latex)
JustinButler700/Rotate-Image-Leetcode-Medium
C++ in place solution to Rotate Image.
JustinButler700/Shuffle-the-Array-Leetcode-Easy
O(n) 1ms solution to Shuffle the Array Java. Beats 100% of Submissions.
JustinButler700/Strictly-Palindromic-Number-Leetcode-Medium
Java O(n) solution to check if number is Strictly Palindromic. beats 100%.
JustinButler700/Swap-Nodes-in-Pairs-Leetcode-Medium
Java, Python, and Typescript solution to Swap nodes in Pairs. O(n). most beat 99%.
JustinButler700/UTF-8-Validation-Leetcode-Medium
1ms beats 100% Java solution to UTF-8 Validation
JustinButler700/Valid-Anagram-Leetcode-Easy
O(n) solution to Valid Anagram in Java. Beats 95% of Java Submissions.
JustinButler700/whisky-book
User documentation for Whisky
JustinButler700/Word-Pattern-LEETCODE-EASY
determines if a group of words follows the given pattern. Beats 85% of Java submissions