Data Manipulation

Categories: Code Problem / Data Structures and Algorithms / Recursion (32) Code Problem / Data Structures and Algorithms / Binary Search (30) Code Problem / Data Structures and Algorithms / Linked Lists (26) Code Problem / Data Structures and Algorithms / Backtracking (26) Code Problem / Data Structures and Algorithms / Stacks and Queues (25) Code Problem / Data Structures and Algorithms / Hashing (24) Databases / SQL / Backup and Recovery (19) Code Problem / Data Structures and Algorithms / Arrays and Strings (19) Databases / SQL / Database Normalization (18) Code Problem / Data Structures and Algorithms / Time Complexity (17) Databases / SQL / Locking (16) Databases / SQL / Replication (15) Databases / SQL / SQL Queries (13) Code Problem / Data Structures and Algorithms / Graphs (13) Databases / SQL / Database Security (13)  More...

Recent solutions:

Check these solutions from our community:
Python / Data Manipulation DifficultyMedium Python
This problem involves taking a list of integers and summing the absolute values of the integers. The example input is [1, -2, 3, -4] and the example output is 10.
About this solution: This is a great solution! It is both complete and solves the problem optimally.
Nov 09
Python / Data Manipulation DifficultyMedium Python
This technical problem deals with finding the sum of the absolute values of a list of integers in Python. An example input is given, along with the expected output.
About this solution: This is a great solution! The candidate has correctly identified the built-in functions to use and has correctly identified the time complexity of the solution.
Nov 08