Nithyasarathinithyasarathi.hashnode.dev·Sep 19, 2024No best programming language ? Here's what I'm learning on my SDE journey !When we choose our career path in the computer science domain, which ultimately leads to IT, we are often forced to learn multiple programming languages. But why? If there are many programming languages with the same operations, functions, and progra...Discuss·47 readsBest Programming languages
Jalaj Singhaljalajsinghal3.hashnode.dev·Feb 6, 2024Attributes and Elements in HTMLHTML Attribute: HTML attributes are special words that provide additional information about the elements; attributes are the modifiers of the HTML element. Each element or tag can have attributes, which define the behavior of that element. Attribu...DiscussAttributes
ANKUSH KUMARmackph.hashnode.dev·Feb 4, 2023Problem: Maximum Product SubarrayGiven an integer array nums, find a subarray the product The test cases are generated so that the answer will fit in a 32-bit integer. Example 1: Input: nums = [2,3,-2,4] Output: 6 Explanation: [2,3] has the largest product 6. Example 2: Input: nums...DiscussJava
Stark Engineeringstarkengineering.hashnode.dev·Jan 15, 2023C Program To Find Reverses Of Given Number#include <stdio.h> int main() { int n, reverse = 0; printf("Enter an integer: "); scanf("%d", &n); while(n>0) { reverse = reverse*10 + n%10; n /= 10; } printf("Reversed number = %d", reverse); return 0; }...Discuss·36 readsC
Vaibhav pineapplecoding.hashnode.dev·Dec 30, 2022Dynamic programming for beginners...Dynamic programming is a programming technique that is used to solve a certain set of problems. It has many real-world applications in many areas like biology, finance, number theory, gaming, etc. What is Dynamic programming? Dynamic programming is b...Discuss·1 like·126 readsDynamic Programming
OLIVIA El REKA Polivia02.hashnode.dev·Oct 22, 2022Python for beginnersPython is a high-level, object-oriented programming language with built-in data structures and dynamic semantics. It supports multiple programming paradigms, such as structures, object-oriented, and functional programming. Python is a popular program...Discuss·26 readspython beginner
ANKUSH KUMARmackph.hashnode.dev·Aug 25, 2022Problem: Sudoku SolverWrite a program to solve a Sudoku puzzle by filling the empty cells. A sudoku solution must satisfy all of the following rules: Each of the digits 1-9 must occur exactly once in each row. Each of the digits 1-9 must occur exactly once in each column...Discuss·1 likeJava