ขนาดวิดีโอ: 1280 X 720853 X 480640 X 360
แสดงแผงควบคุมโปรแกรมเล่น
เล่นอัตโนมัติ
เล่นใหม่
Well explained!
Each bit means it's incremented once.s[k] = s[0] + bits_count(k)Just return bit count of k.public char kthCharacter(int k) { return (char) ('a' + Integer.bitCount(k - 1));}
Well explained!
Each bit means it's incremented once.
s[k] = s[0] + bits_count(k)
Just return bit count of k.
public char kthCharacter(int k) {
return (char) ('a' + Integer.bitCount(k - 1));
}