Author: Aniruddha Chaudhari

coding challenge

35+ Competitive Coding Questions with Solutions | asked in Interviews

Competitive coding questions with solutions asked in Interviews 2022 for product based companies. Coding challenges are solved in programming languages like C, C++, Java, Python…

Python

How to Convert List of Tuples to Dictionary Python?

Write a program to convert list of tuples to dictionary Python?

nodejs

Node.js vs Python | Which Backend Technology to Select

Node.js vs Python. Which is the best backend programming language to use considering syntax, performance and library support

Python

How to Convert String Representation of List to List in Python?

Simplest way to convert string representation of list to list in Python using split(), json.loads() and ast.literal_eval().

Django

How to Initialize Default Multiple Choice Field in Django Form?

How to Initialize Multiple Choice Field in Django Form? Select default MultipleChoiceField options. Explained with example.

coding challenge

Minimum Cost to Paint all Houses with No Adjacent Houses have Same Color

Write a program to find the minimum cost to paint all houses in Python. Interview coding question asked in Amazon.

HTML

One-Line HTML Code to Add Favicon for Your Website

How to add favicon for website? HTML code for favicon image.

Django

Reverse Look Up for Foreign Key using related_name in Django

How to write a program for Reverse Look Up for Foreign Key using related_name in Django? Model backward compatibility.

Python

How to Get Python List all Files in Directory with Extension?

Write a program to get the Python list all files in directory with extension? Using listdir() from OS module.