LeetCode 67. Add Binary Solution Explained - Java

  Рет қаралды 46,771

Nick White

Nick White

Күн бұрын

The Best Place To Learn Anything Coding Related - bit.ly/3MFZLIZ
Join my free exclusive community built to empower programmers! - www.skool.com/...
Preparing For Your Coding Interviews? Use These Resources
--------------------
(My Course) Data Structures & Algorithms for Coding Interviews - thedailybyte.d...
AlgoCademy - algocademy.com...
Daily Coding Interview Questions - bit.ly/3xw1Sqz
10% Off Of The Best Web Hosting! - hostinger.com/...
Follow Me on X/Twitter - x.com/nickwhit...
Follow My Instagram - / nickwwhite
Other Social Media
----------------------------------------------
Discord - / discord
Twitch - / nickwhitettv
TikTok - / nickwhitetiktok
LinkedIn - / nicholas-w-white
Show Support
------------------------------------------------------------------------------
Patreon - / nick_white
PayPal - paypal.me/nick....
Become A Member - / @nickwhite
#coding #programming #softwareengineering

Пікірлер: 45
@destodorova8202
@destodorova8202 4 жыл бұрын
Thank you for taking the time to explain binary with addition examples - very helpful!!
@curiosity9861
@curiosity9861 3 жыл бұрын
Very helpful video, but if we dont use carry variable in this program instead after sb.append(sum%2) line we can use sum=sum/2; and after while loop check if sum!=0 if true append it and then returning it will result in 1ms of runtime which is faster than 100% of java code.
@iugaialeksei2108
@iugaialeksei2108 11 ай бұрын
You are awesome man, so simple and clear explanation for leetcode tasks I've ever seen on youtube. Also, your solutions are always simple and clean.
@leezhenjian7451
@leezhenjian7451 8 ай бұрын
Hi Nick, thanks for the clear explanation. I was having trouble figuring out how the carry and sum modulus works until i watched ur video.
@ashisenchoudhury162
@ashisenchoudhury162 3 жыл бұрын
You are awesome Nick...Thank you for explaining each and every problem....It is helping me a lot to improve my coding and thinking skills.....Thanks, Love from India!!!
@user-hy2cv7zz3d
@user-hy2cv7zz3d 6 ай бұрын
Honestly the best explanation for this problem on the platform. Thank you :D
@darod6098
@darod6098 4 жыл бұрын
Inserting at the end and then reversing is actually better than inserting at the beginning of the string builder with something like sb.insert(0, sum %2) ?
@nikhilpoonia8191
@nikhilpoonia8191 Жыл бұрын
thank you Nick.....explanation and looks both are on top level
@dev-skills
@dev-skills 3 жыл бұрын
Below is the solution using Bit Manipulation (same Time Complexity but more space efficient) class Solution { public String addBinary(String a, String b) { int i = a.length() - 1; int j = b.length() - 1; StringBuilder result = new StringBuilder(); boolean carry = false; while(i >= 0 || j >= 0) { boolean sumWithCarry = false; boolean aBit = (i >= 0) ? (a.charAt(i--) - '0' > 0) : false; boolean bBit = (j >= 0) ? (b.charAt(j--) - '0' > 0) : false; boolean sum = aBit ^ bBit; // a ^ b sumWithCarry = sum ^ carry; // a ^ b ^ c carry = (aBit & bBit) | (sum & carry); // a & b | sum & c if (sumWithCarry) result.insert(0, 1); else result.insert(0, 0); } if (carry) { result.insert(0, 1); } return result.toString(); } }
@rohitrohilla4927
@rohitrohilla4927 2 жыл бұрын
i wanna tell you i am a beginner and whenever I see your code then There is only a line in my mind 'What a crazy code is this' !...
@akashpal7748
@akashpal7748 2 жыл бұрын
Best explanation 😊 Thank you
@satyamgupta6030
@satyamgupta6030 Жыл бұрын
what a nice solution and approach man thanks a ton nick brother. keep making such videos.
@beibaryslearner
@beibaryslearner 8 ай бұрын
very good explanation
@mohankrishna4987
@mohankrishna4987 4 жыл бұрын
Very Nice Solution, Thanks a lot.
@mashrufehsan
@mashrufehsan 8 ай бұрын
It was very helpful. Thank you.
@kabilanm9206
@kabilanm9206 3 жыл бұрын
carry ==1 also should be included in while loop condition!!
@tasneemayham974
@tasneemayham974 Жыл бұрын
One question: why use a StringBuilder instead of a normal string?
@mohkh7610
@mohkh7610 Жыл бұрын
I am a bit confused, let's say the numbers are "11" & "11" Won't the sum add 1 from each first number of these numbers to become 2 then carry is divided by 2, and then sum = carry sum =1 then sum+=1 twice to become 3? I think I perceived something wrongly because I don't think the sum should be 3. or maybe it should be 3 but I don't know how
@akware977
@akware977 2 жыл бұрын
simply awesome
@SHSelect
@SHSelect 2 жыл бұрын
question: why does '1' - '0' = 1 while '1' + '0' = 97?
@chemudupatikarthik8
@chemudupatikarthik8 6 ай бұрын
The reason behind this lies in the way programming languages handle different types of data. When you use the '1' - '0' operation, many programming languages will implicitly convert the characters '1' and '0' into their corresponding ASCII (or Unicode) values before performing the subtraction. In ASCII, the character '1' has a decimal value of 49, and the character '0' has a decimal value of 48. So, '1' - '0' essentially becomes 49 - 48, resulting in 1. However, when you use the '1' + '0' operation, the programming language treats the '1' and '0' as characters to concatenate rather than numbers to add. In ASCII, '1' has a decimal value of 49, and '0' has a decimal value of 48. When you add these characters together, it concatenates them, resulting in the string '10', which in ASCII would represent the character with a decimal value of 97.
@varunrao2931
@varunrao2931 4 жыл бұрын
Can you do it without using the + operator (only using bit manipulation). FANG has been known to ask this
@edgbaston149
@edgbaston149 Жыл бұрын
Thank you
@cengprog9529
@cengprog9529 7 ай бұрын
For anyone experiencing an error, here's a better code class Solution { public String addBinary(String a, String b) { StringBuilder sb = new StringBuilder(); int i = a.length() - 1; int j = b.length() - 1; int carry = 0; while (i >= 0 || j >= 0 || carry > 0) { int sum = carry; if (i >= 0) sum += a.charAt(i--) - '0'; if (j >= 0) sum += b.charAt(j--) - '0'; sb.append(sum % 2); carry = sum / 2; } return sb.reverse().toString(); } }
@hande8384
@hande8384 4 жыл бұрын
in case of 11 +11 3 % 2 =0 which will append 0 but 3 in binary is 11 should append 1
@alokmehta4631
@alokmehta4631 4 жыл бұрын
mod operator gives the remainder and when 3 is divided by 2 the remainder is 1 not 0
@raihanoorfarid4973
@raihanoorfarid4973 Жыл бұрын
Tnx
@nhilratha5368
@nhilratha5368 2 жыл бұрын
how about Subtraction ?
@feelthestrength9964
@feelthestrength9964 3 жыл бұрын
pls solve this write 1 to 5 in binary numbers pls solve it through java coding
@bhushank1234
@bhushank1234 4 жыл бұрын
Thanks for the solution. You explained it nicely. What is the space and time complexity of this solution?
@weizhou4974
@weizhou4974 4 жыл бұрын
The time complexity is o(n) and space complexity is o(1)
@stayblessed4real
@stayblessed4real 2 жыл бұрын
@@weizhou4974 Can you please explain that why exactly he used string builder?
@MrSaurus
@MrSaurus Жыл бұрын
@@stayblessed4real I think it's because the method needs to be returned as a string
@unkown657
@unkown657 Жыл бұрын
String builder was used for 2 reasons: 1. being able to modify the String, as usual String is immutable object, 2. which also goes back to reason number, which is the reverse function.
@topsiterings
@topsiterings 4 жыл бұрын
Nice!
@aryanjindal127
@aryanjindal127 3 жыл бұрын
Why did you initialize the sum as carry??
@MrSaurus
@MrSaurus Жыл бұрын
If I am understanding properly, it is because each time an operation takes place, the carry needs to be sent to sum, for the next operation. So if 1+1 happens, carry would be assigned the value of 2/2, which is 1, and once it loops back, 1 is already assigned to sum because that 1 came from the carry
@shritishaw7510
@shritishaw7510 3 жыл бұрын
0:08 system failure
@shauryakapoor2122
@shauryakapoor2122 3 жыл бұрын
Can anyone explain why we do - '0' in line 11 and line 12? ( sum += a.charAt(i) - '0'); and at ( sum += b.charAt(i) - '0');
@sushmitagupta6101
@sushmitagupta6101 3 жыл бұрын
to make it as integer, we do that
@franperez6454
@franperez6454 Жыл бұрын
in case someone still wonders about this... When using characters in a int type variable (such as sum), they are returned with the ASCII value. a.charAt(1)=49 (ASCII value of 1). So if we want to get the int value of 1 we need to substract the ASCII value of 0 (48). (int) 1-0 = (ASCII) 49-48 = 1 (int) 2-0= (ASCII) 50-48=2 …
@shauryakapoor2122
@shauryakapoor2122 Жыл бұрын
@@franperez6454 thank you
@Sobioytccc
@Sobioytccc 4 жыл бұрын
public static String addBinary(String a, String b){ BigInteger firstNum = new BigInteger(a, 2); BigInteger secondNum = new BigInteger(b, 2); BigInteger sum = firstNum.add(secondNum); return sum.toString(2); }
@ameyamahadevgonal8130
@ameyamahadevgonal8130 3 жыл бұрын
consider editing
Add Binary (LeetCode) | Adding Binary Numbers as Strings Explained
12:43
LeetCode 14. Longest Common Prefix Solution Explained - Java
6:33
Running With Bigger And Bigger Feastables
00:17
MrBeast
Рет қаралды 205 МЛН
Whoa
01:00
Justin Flom
Рет қаралды 56 МЛН
Bend The Impossible Bar Win $1,000
00:57
Stokes Twins
Рет қаралды 43 МЛН
Self Taught Programmers... Listen Up.
11:21
Nick White
Рет қаралды 1 МЛН
Climbing Stairs
5:35
Kevin Naughton Jr.
Рет қаралды 100 М.
Medium Google Coding Interview With Ben Awad
51:27
Clément Mihailescu
Рет қаралды 1,3 МЛН
Google Coding Interview With A Competitive Programmer
54:17
Clément Mihailescu
Рет қаралды 2,5 МЛН
LeetCode 5.  Longest Palindromic Substring (Algorithm Explained)
14:40
Fast Inverse Square Root - A Quake III Algorithm
20:08
Nemean
Рет қаралды 5 МЛН
LeetCode 238. Product of Array Except Self (Solution Explained)
14:49
Add Binary | LeetCode 67 | C++, Java, Python
14:46
Knowledge Center
Рет қаралды 40 М.
Running With Bigger And Bigger Feastables
00:17
MrBeast
Рет қаралды 205 МЛН